home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / misc / math / converto.lha / Install < prev    next >
Text File  |  1997-04-06  |  3KB  |  111 lines

  1. (complete 0)
  2. (message "First, I will install necessary libraries"
  3.    " in you LIBS: directory."
  4.    " They are Cando.library, Candogfx.library and Inovamusic.library."
  5.    " version check will be made."
  6. )
  7. (complete 11)
  8. (copylib
  9.     (prompt "Shall I copy Cando.library ?")
  10.     (help
  11.         (cat "The following library will be copied:\n"
  12.              "Cando.library\n"
  13.              "The Convertor program can't be run without it."
  14.         )
  15.     )
  16.     (confirm)
  17.     (source "libs/cando.library")
  18.     (dest "libs:")
  19. )
  20. (complete 22)
  21. (copylib
  22.     (prompt "Shall I copy Candogfx.library ?")
  23.     (help
  24.         (cat "The following library will be copied:\n"
  25.              "CandoGfx.library\n"
  26.              "The Convertor program can't be run without it."
  27.         )
  28.     )
  29.     (confirm)
  30.     (source "libs/candogfx.library")
  31.     (dest "libs:")
  32. )
  33. (complete 33)
  34. (copylib
  35.     (prompt "Shall I copy Cando.library ?")
  36.     (help
  37.         (cat "The following library will be copied:\n"
  38.              "inovamusic.library\n"
  39.              "The Convertor program can't be run without it."
  40.         )
  41.     )
  42.     (confirm)
  43.     (source "libs/inovamusic.library")
  44.     (dest "libs:")
  45. )
  46. (complete 44)
  47. (if
  48.     (askbool
  49.         (prompt "Do you want me to install Convertor on your Hard Disk? (You can also run it from the disk)")
  50.         (help
  51.              (cat "If you answer yes, I will copy all necessary files to your hard disk"
  52.                   " and Convertor.\n"
  53.                   "If you answer no, I will quit now, but you will be able to run it from"
  54.                   " the disk and install it later."
  55.              )
  56.         )
  57.         (default 1)
  58.         (choices "Install" "Exit")
  59.     )
  60.     (
  61.         (complete 67)
  62.         (set @default-dest
  63.             (tackon
  64.                 (askdir
  65.                     (prompt "Please select a place where a Convertor directory will be created.")
  66.                     (help "If you select Work:, for example, all files will be copied in Work:Convertor.")
  67.                     (default @default-dest)
  68.                 ) "Convertor"
  69.             )
  70.         )
  71.         (complete 78)
  72.         (makedir @default-dest
  73.             (prompt
  74.                 (cat "I will now create the " @default-dest " directory")
  75.             )
  76.             (help (cat "... and I will copy all files there."))
  77.             (infos)
  78.             (confirm)
  79.         )
  80.         (complete 89)
  81.         (copyfiles
  82.             (prompt
  83.                 (cat "I will now copy all files from the disk to "
  84.                      @default-dest
  85.                 )
  86.             )
  87.             (help "You will then be able to run Convertor from there." )
  88.             (source "")
  89.             (dest @default-dest)
  90.             (pattern "~(Install#?|Libs#?|icon#?)")
  91.             (files)
  92.             (infos)
  93.             (optional askuser)
  94.             (confirm)
  95.         )
  96.         (copyfiles
  97.             (prompt "Do you want me to copy the directory icon?")
  98.             (help (cat "Since it is MWB style, you may prefer keep the default icon.\n"
  99.                        "In that case, answer No." ))
  100.             (source "icon")
  101.             (dest (pathonly @default-dest))
  102.             (infos)
  103.             (pattern "#?")
  104.             (optional askuser)
  105.             (confirm)
  106.         )
  107.         (complete 100)
  108.     )
  109. )
  110.  
  111.